Ignore `*.py` in `make no-exes`
authorGleb Kozyrev <gleb@gkoz.com>
Fri, 9 Oct 2015 17:24:24 +0000 (20:24 +0300)
committerGleb Kozyrev <gleb@gkoz.com>
Fri, 9 Oct 2015 17:24:24 +0000 (20:24 +0300)
Makefile.in

index bec356904b30930a9b949a2e195054d366d57aca..7d883ef096f80dc7bd2698dc9a6324513377340e 100644 (file)
@@ -108,7 +108,7 @@ no-exes:
        find $$(git ls-files) -type f \
                \( -perm -u+x -or -perm -g+x -or -perm -o+x \) \
                -not -name configure -not -name '*.sh' -not -name '*.rs' \
-               -not -wholename "*/rust-installer/*" | \
+               -not -name '*.py' -not -wholename "*/rust-installer/*" | \
                grep '.*' \
                && exit 1 || exit 0